IntlMemoizer
intl-memoizer
is a crate designed to handle lazy-initialized references
to intl formatters.
The assumption is that allocating a new formatter instance is costly, and such
instance is read-only during its life time, with constructor being expensive, and
format
/select
calls being cheap.
In result it pays off to use a singleton to manage memoization of all instances of intl
APIs such as PluralRules
, DateTimeFormatetc. between all
FluentBundle` instances.
Usage
The following is a high-level example of how this works, for running examples see the docs
/// Internationalization formatter should implement the Memoizable trait.
// The main memoizer has weak references to all of the per-language memoizers.
let mut memoizer = default;
// The formatter memoziation happens per-locale.
let lang = "en-US".parse.expect;
let lang_memoizer: = memoizer.get_for_lang;
// Run the formatter
let options: NumberFormatOptions ;
// Format pi with the options. This will lazily construct the NumberFormat.
let pi = lang_memoizer
.
.unwrap
// The example formatter constructs a string with diagnostic information about
// the configuration.
assert_eq!;
// Running it again will use the previous formatter.
let two = lang_memoizer
.
.unwrap
assert_eq!;
Get Involved
fluent-rs
is open-source, licensed under both the Apache 2.0 and MIT licenses. We
encourage everyone to take a look at our code and we'll listen to your
feedback.
Discuss
We'd love to hear your thoughts on Project Fluent! Whether you're a localizer looking for a better way to express yourself in your language, or a developer trying to make your app localizable and multilingual, or a hacker looking for a project to contribute to, please do get in touch on the mailing list and the IRC channel.
- Discourse: https://discourse.mozilla.org/c/fluent
- Matrix channel: #fluent:mozilla.org